home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / setbuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  111 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream,char *buf)
  4. {
  5.     setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ);
  6. }
  7.  
  8.